From d0d2eaa2de58a0c33e9a21604b126961403cd69e Mon Sep 17 00:00:00 2001 From: dujinkim Date: Wed, 14 May 2025 06:12:13 +0000 Subject: (최겸) 기술영업 조선, 해양Top, 해양 Hull 아이템 리스트 개발(CRUD, excel import/export/template) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/[lng]/evcp/(evcp)/items-tech/layout.tsx | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 app/[lng]/evcp/(evcp)/items-tech/layout.tsx (limited to 'app/[lng]/evcp/(evcp)/items-tech/layout.tsx') diff --git a/app/[lng]/evcp/(evcp)/items-tech/layout.tsx b/app/[lng]/evcp/(evcp)/items-tech/layout.tsx new file mode 100644 index 00000000..5eb88325 --- /dev/null +++ b/app/[lng]/evcp/(evcp)/items-tech/layout.tsx @@ -0,0 +1,25 @@ +import * as React from "react" +import { ItemTechContainer } from "@/components/items-tech/item-tech-container" +import { Shell } from "@/components/shell" + +// Layout 컴포넌트는 서버 컴포넌트입니다 +export default function ItemsShipLayout({ + children, +}: { + children: React.ReactNode +}) { + // 아이템 타입 정의 + const itemTypes = [ + { id: "ship", name: "조선 아이템" }, + { id: "top", name: "해양 TOP" }, + { id: "hull", name: "해양 HULL" }, + ] + + return ( + + + {children} + + + ) +} -- cgit v1.2.3